page.tsx 450 B

123456789101112131415
  1. import React from "react";
  2. import { getI18n } from "locales/server";
  3. import { WorkoutStepper } from "@/features/workout-builder";
  4. import { serverAuth } from "@/entities/user/model/get-server-session-user";
  5. export default async function HomePage() {
  6. const user = await serverAuth();
  7. const t = await getI18n();
  8. return (
  9. <div className="bg-background text-foreground relative flex h-fit flex-col">
  10. <WorkoutStepper />
  11. </div>
  12. );
  13. }